home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
ISSUE04
/
INTERNAL
/
CALL32NT.ZIP
/
DELPHI
/
TEST32.DPR
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-06-28
|
425 b
|
16 lines
program Test32; {Draws Bezier curves in Win95/WinNT, which is normally impossible in Win16}
{Written in Delphi for Windows 1.0 }
{By Christian Ghisler, CIS: 100332,1175 }
{Released to the public domain June 14,1995}
uses
Forms,
Testw32 in 'TESTW32.PAS' {Form1};
{$R *.RES}
begin
Application.CreateForm(TForm1, Form1);
Application.Run;
end.